home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 64
/
Volume 64 - JOGO DISK .iso
/
Games
/
skecthpad.swf
/
scripts
/
frame_35
/
DoAction_2.as
next >
Wrap
Text File
|
2008-04-25
|
872b
|
37 lines
this.color_mixer.onEnterFrame = function()
{
i = 1;
while(i <= 3)
{
this["hexc" + i + "Text"].onKillFocus = function()
{
hexMode = false;
};
this["hexc" + i + "Text"].onSetFocus = function()
{
hexMode = true;
};
fader = this["fader" + i].knob;
if(dragging)
{
this["c" + i] = fader._y * 3.6428;
this["hc" + i] = this["c" + i].toString(16);
}
else if(hexMode)
{
fader._y = parseInt("0x" + this["hc" + i]);
this["c" + i] = parseInt("0x" + this["hc" + i]);
}
else
{
fader._y = this["c" + i] / 3.6428;
this["hc" + i] = Number(this["c" + i]).toString(16);
if(this["c" + i] > 255)
{
this["c" + i] = 255;
}
}
i++;
}
};